home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / CBGRX103.ZIP / contrib / libgrx / src / p4pixrow.c < prev    next >
Text File  |  1993-12-06  |  2KB  |  81 lines

  1. /** 
  2.  ** P4PIXROW.C 
  3.  **
  4.  **  Copyright (C) 1992, Csaba Biegl
  5.  **    820 Stirrup Dr, Nashville, TN, 37221
  6.  **    csaba@vuse.vanderbilt.edu
  7.  **
  8.  **  This file is distributed under the terms listed in the document
  9.  **  "copying.cb", available from the author at the address above.
  10.  **  A copy of "copying.cb" should accompany this file; if not, a copy
  11.  **  should be available from where this file was obtained.  This file
  12.  **  may not be distributed without a verbatim copy of "copying.cb".
  13.  **  You should also have received a copy of the GNU General Public
  14.  **  License along with this program (it is in the file "copying");
  15.  **  if not, write to the Free Software Foundation, Inc., 675 Mass Ave,
  16.  **  Cambridge, MA 02139, USA.
  17.  **
  18.  **  This program is distributed in the hope that it will be useful,
  19.  **  but WITHOUT ANY WARRANTY; without even the implied warranty of
  20.  **  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  21.  **  GNU General Public License for more details.
  22.  **/
  23.  
  24. #include "p4.h"
  25. #include "memfill.h"
  26. #include "memcopy.h"
  27.  
  28. void _GrP4SetPixRow(long addr,int color,int width)
  29. {
  30.     pixptr p = P_ADDRESS(CURC,addr);
  31.     int opr = C_OPER(color);
  32.     int plane,lmask,rmask;
  33.  
  34.     if(width <= 0) return;
  35.     if((_GrP4DrawTable[opr] ^ (color &= C_SIGNIF)) == 0) return;
  36.     _ClrDir();
  37.     _ComputeMasks(addr,width,lmask,rmask);
  38.     if(CURC->gc_onscreen) {
  39.         _SetVideoColor(color,opr);
  40.         if(lmask) { _SetVGAWriteMask(lmask); (*p)++; p++; }
  41.         if(width) {
  42.         _SetVGAWriteMask(0xff);
  43.         if(opr == C_SET)
  44.             _RowSetB(VRAM,p,0,width);
  45.         else {
  46.             _SaveDS();
  47.             _RowCpyB(VRAM,p,p,width);
  48.             _RestoreDS();
  49.         }
  50.         p += width;
  51.         }
  52.         if(rmask) { _SetVGAWriteMask(rmask); (*p)++; }
  53.         return;
  54.     }
  55.     opr <<= 1;
  56.     for(plane = 4; --plane >= 0; color >>= 1) {
  57.         pixptr pp = p;
  58.         switch(opr | (color & 1)) {
  59.           case C_XOR2+1:
  60.         if(lmask) { *pp++ ^= lmask; }
  61.         if(width) { _RowSetXorB(MEM_X,pp,0xff,width); pp += width; }
  62.         if(rmask) { *pp ^= rmask; }
  63.         break;
  64.           case C_OR2+1:
  65.           case C_SET2+1:
  66.         if(lmask) { *pp++ |= lmask; }
  67.         if(width) { _RowSetB(MEM_1,pp,0xff,width); pp += width; }
  68.         if(rmask) { *pp |= rmask; }
  69.         break;
  70.           case C_AND2+0:
  71.           case C_SET2+0:
  72.         if(lmask) { *pp++ &= ~lmask; }
  73.         if(width) { _RowSetB(MEM_0,pp,0,width); pp += width; }
  74.         if(rmask) { *pp &= ~rmask; }
  75.         break;
  76.         }
  77.         p = (pixptr)((long)p + CURC->gc_planeoffset);
  78.     }
  79. }
  80.  
  81.